home *** CD-ROM | disk | FTP | other *** search
/ c't freeware shareware 1999 February / CT_SW9902.ISO / pc / software / wissen / daten / gnuplot.hqx / gnuplot.2.0b4 / Scripting Notes - a28 < prev    next >
Text File  |  1997-04-17  |  1KB  |  42 lines

  1. 2.0a28
  2.  
  3. The 'open dialog' event is working again. gnuplot must be brought to the 
  4. front before you send the event. If gnuplot is running in the background 
  5. when it receives this event it will return 2000 as the error code.
  6.  
  7.  
  8. 2.0a27
  9.  
  10. The clipboard is now a property. You can plot it by itself or as part of 
  11. a list of files. Plotting a table of data in memory works the same way. 
  12.  
  13. I use the mixed command/data function of gnuplot to plot Apple event data. 
  14. This method, which is really the best way, has the limitation that only 
  15. one set of data can be plotted. The rest of the parameters in a list must 
  16. be files.
  17.  
  18. The 'plot' and 'splot' apple event will not work for functions.
  19.  
  20. Please see the 'multiple plots' file in the :Scripts:AppleScript Samples: 
  21. folder.
  22.  
  23.  
  24. Pre-a27
  25.  
  26. 1. The 'graph' class is a subclass of the class 'window', but you can access 
  27. the graph specific properties via a window object if you want. In other 
  28. words:
  29.  
  30.         get picture of window "Graph 1: A Graph"
  31.  
  32. is equivalent to:
  33.  
  34.         get picture of graph "Graph 1: A Graph"
  35.         
  36. 2. The 'graph number' can be used to grab the counter that is displayed as 
  37. part of the window title. The graph number is zero if the window is the 
  38. 'single window'.
  39.  
  40. 3. Printing via Apple events is not currently supported.
  41.  
  42.